home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / OpenDoc 1.2b2c1 / OpenDoc / Interfaces / IDL / Settings.idl < prev    next >
Encoding:
Text File  |  1997-01-01  |  1.1 KB  |  50 lines  |  [TEXT/MPS ]

  1. //#    Copyright:    © 1994 - 1995 by Apple Computer, Inc., all rights reserved.
  2.  
  3. #ifndef _SETTINGS_
  4. #define _SETTINGS_
  5.  
  6. #ifndef _EXTENSN_
  7. #include "Extensn.idl"
  8. #endif
  9.  
  10. //==============================================================================
  11. // Classes defined in this interface
  12. //==============================================================================
  13.  
  14. interface   ODSettingsExtension;
  15.  
  16. //==============================================================================
  17. // Classes used by this interface
  18. //==============================================================================
  19.  
  20. interface   ODFacet;
  21. interface   ODPart;
  22.  
  23. //==============================================================================
  24. // ODSettingsExtension
  25. //==============================================================================
  26.  
  27. interface ODSettingsExtension : ODExtension
  28. {
  29.     void InitSettingsExtension(in ODPart owner);
  30.  
  31.     void ShowSettings(in ODFacet facet);
  32.  
  33. #ifdef __SOMIDL__
  34.     implementation
  35.     {
  36.           functionprefix = ODSettingsExtension;
  37.  
  38.         override:
  39.             somUninit,
  40.             Release;
  41.         releaseorder:
  42.             InitSettingsExtension,
  43.             ShowSettings;
  44.     };
  45. #endif
  46. };
  47.  
  48.  
  49. #endif //# _SETTINGS_
  50.